home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / hardware / adkbits.h next >
C/C++ Source or Header  |  1988-07-15  |  1KB  |  40 lines

  1. #ifndef    HARDWARE_ADKBITS_H
  2. #define    HARDWARE_ADKBITS_H
  3. #define    ADKB_SETCLR    15
  4. #define    ADKB_PRECOMP1    14
  5. #define    ADKB_PRECOMP0    13
  6. #define    ADKB_MFMPREC    12
  7. #define    ADKB_UARTBRK    11
  8. #define    ADKB_WORDSYNC    10
  9. #define    ADKB_MSBSYNC    9
  10. #define    ADKB_FAST    8
  11. #define    ADKB_USE3PN    7
  12. #define    ADKB_USE2P3    6
  13. #define    ADKB_USE1P2    5
  14. #define    ADKB_USE0P1    4
  15. #define    ADKB_USE3VN    3
  16. #define    ADKB_USE2V3    2
  17. #define    ADKB_USE1V2    1
  18. #define    ADKB_USE0V1    0
  19. #define    ADKF_SETCLR    (1<<15)
  20. #define    ADKF_PRECOMP1    (1<<14)
  21. #define    ADKF_PRECOMP0    (1<<13)
  22. #define    ADKF_MFMPREC    (1<<12)
  23. #define    ADKF_UARTBRK    (1<<11)
  24. #define    ADKF_WORDSYNC    (1<<10)
  25. #define    ADKF_MSBSYNC    (1<<9)
  26. #define    ADKF_FAST    (1<<8)
  27. #define    ADKF_USE3PN    (1<<7)
  28. #define    ADKF_USE2P3    (1<<6)
  29. #define    ADKF_USE1P2    (1<<5)
  30. #define    ADKF_USE0P1    (1<<4)
  31. #define    ADKF_USE3VN    (1<<3)
  32. #define    ADKF_USE2V3    (1<<2)
  33. #define    ADKF_USE1V2    (1<<1)
  34. #define    ADKF_USE0V1    (1<<0)
  35. #define    ADKF_PRE000NS    0
  36. #define    ADKF_PRE140NS    (ADKF_PRECOMP0)
  37. #define    ADKF_PRE280NS    (ADKF_PRECOMP1)
  38. #define    ADKF_PRE560NS    (ADKF_PRECOMP0|ADKF_PRECOMP1)
  39. #endif
  40.